home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / XXX / Strip_Mac!.sit / Strip-Mac! / Strip-Mac!.rsrc / TEXT_301_Help (cards).txt < prev    next >
Text File  |  1992-05-04  |  13KB  |  269 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. Writing your own cards    
  12. The punishment, reward and surprise cards dealt out to players are stored in the files called ‚ÄòSTRIP-MAC! PUNISHMENTS‚Äô, ‚ÄòSTRIP-MAC! REWARDS‚Äô and ‚ÄòSTRIP-MAC! SURPRISES‚Äô respectively. These names are hard-wired into the code of the application and so may not be changed. Also, the files must be kept in the same folder as the application.
  13.  
  14. Each file consists of a series of individual punishments, rewards or surprises terminated by a carriage return. For example, the first few lines of the punishments file might be:
  15.  
  16.     There's good news and there's bad news. The good news
  17.     is that ALL other players must remove a piece of clothing;
  18.     the bad news is that you must remove TWO pieces.
  19.  
  20.     If today is a day of the week with an 'r' in its name then
  21.     you should remove your outermost piece of clothing, 
  22.     otherwise remove your innermost piece.
  23.  
  24.     You must kiss a randomly chosen player‚Äôs feet.
  25.  
  26. Take careful note: there is not a carriage return at the end of each line, only at the end of each distinct card. If you choose to add-to or modify these files you will find it easier to use a word-processor, rather than a text-editor, as the later type of program rarely ‚Äòwraps around‚Äô long lines. Also, be sure to save the file as plain text. (As a precaution, modify copies  of the original files.) Any number of blank lines may be used to separate individual cards. Also any line beginning with an apostrophe is treated as a comment and ignored. The blank line between each of the cards above is for clarity only and is not strictly necessary.
  27.  
  28.     Macros    
  29. In order to make the individual cards more varied than the ones shown above, the game recognises various embedded macros. For example, rather than having a card that reads:
  30.  
  31.     You may remove a piece of clothing from the player on your
  32.     left.
  33.  
  34. you may wish to enhance this card by altering it to say:
  35.  
  36.     You may remove a piece of clothing from <p>.
  37.  
  38. When this card is displayed the application will replace the macro ‚Äò<p>‚Äô with the name of one or two randomly chosen players. Thus it might appear on the screen as:
  39.  
  40.     You may remove a piece of clothing from Sarah.
  41.  
  42. or:
  43.  
  44.     You may remove a piece of clothing from Bill and Ted.
  45.  
  46. or a generic phrase, such as:
  47.  
  48.     You may remove a piece of clothing from the player of
  49.     your choice.
  50.  
  51. You can have more than one macro in the same card. In the following examples the macro <T> is replaced with a randomly chosen number of seconds. Thus the card:
  52.  
  53.     You may play 'doctors' with <p> for <T> seconds.
  54.  
  55. might appear on the screen as:
  56.  
  57.     You may play 'doctors' with John and Harry for 30
  58.     seconds.
  59.  
  60. or:
  61.  
  62.     You may play 'doctors' with Carolyn for 15 seconds.
  63.  
  64. or: 
  65.  
  66.     You may play 'doctors' with the players of your choice
  67.     for 40 seconds.
  68.  
  69. Notes:
  70. (a)  A person‚Äôs sexual preferences will always be taken into consideration when expanding any macros. Thus if the ‚Äòdoctors‚Äô card, mentioned above, is presented to a heterosexual male player then it will not  expand to the name of another male player (or, for that matter, to the name of a homosexual female player).
  71.  
  72. (b) The <P> and <p> macros (described in more detail below) are functionally very similar, but the <P> macros are typically used in punishment cards, while the <p> macros are typically used in reward cards.
  73.  
  74. (c) In a two player game, the <P> and <p> macros will never expand to a generic phrase like ‚Äòthe player of your choice‚Äô or ‚Äòa randomly chosen player‚Äô. As there is only one other player in the game, it would be rather silly to do so.
  75.  
  76. (d) At present, no macro can appear in the same card more than once. I hope to fix this Real Soon Now. This will allow cards such as:
  77.  
  78.     The first player to correctly state the product of <T>
  79.     and <T> may remove a piece of clothing from the player
  80.     of his/her choice. Anyone guessing incorrectly, must
  81.     remove a piece of their own clothing (or be spanked if
  82.     they are already naked).
  83.  
  84.     Macro expansions    
  85. The complete list of macros appears below‚Äînotice that they are case-sensitive. For further examples of how to use them, look through the punishment, reward and surprises files distributed with the application. [If you can think of any other macros that would be useful, just drop me a line.]
  86.  
  87. <BM> 
  88. The macro will expand to one of the following male body-parts: chest, shoulders, crotch, ears, stomach, thighs, butt, neck, legs or belly button.
  89.  
  90. <BF>
  91. The macro will expand to one of the following female body-parts: breasts, shoulders, crotch, ears, stomach, thighs, butt, neck, legs, nipples or belly button.
  92.  
  93. <C>     
  94. The macro will expand to a randomly chosen item of the choosing player's own clothing. Typically it is used in punishment cards, like so:
  95.  
  96.     You must remove your <C>.
  97.  
  98. This macro should not be used in surprise cards because such cards often apply to the whole group rather than to a selected player.
  99.  
  100. <c>     
  101. The macro will expand to a randomly chosen item of clothing from a randomly chosen player. Typically it is used in reward or surprise cards, like so:
  102.  
  103.     You may remove every <c> you can see.
  104.  
  105. <CR+>   
  106. The macro will expand to a randomly chosen number of credits that will automatically be added to the choosing player's balance (or to the balance of a randomly chosen player if used in a surprise card). For example:
  107.  
  108.     You have just won <CR+> credits.         (reward card)
  109.     Someone has just won <CR+> credits.      (surprise card)
  110.  
  111. Cards that contain a <CR+> macro should not contain any ‚Äòp‚Äô or ‚ÄòP‚Äô macros. Use the ‚ÄòSet Parameters‚Äô command to set the upper and lower limiting values for this macro.
  112.  
  113. <CR->
  114. The macro will expand to a randomly chosen number of credits that will automatically be deducted from the choosing player's balance (or from the balance of a randomly chosen player if used in a surprise card).  For example:
  115.  
  116.     You have just lost <CR-> credits.         (punishment card)
  117.     Someone has just lost <CR-> credits.      (surprise card)
  118.  
  119. Cards that contain a <CR‚Äì> macro should not contain any ‚Äòp‚Äô or ‚ÄòP‚Äô macros. Use the ‚ÄòSet Parameters‚Äô command to set the upper and lower limiting values for this macro.
  120.  
  121. <T>     
  122. The macro will expand to a number; e.g. 10, 20, ..., 60. Typically it is used to denote a time in seconds. Use the ‚ÄòSet Parameters‚Äô command to set the upper and lower limiting values for this macro.
  123.  
  124. <P>   
  125. The macro will generally expand to the name of one or two randomly chosen players, but sometimes to a generic phrase such as ‚Äòa randomly chosen player‚Äô. For example:
  126.  
  127.     <P> may remove your next piece of clothing.
  128.  
  129. might expand to any of the following:
  130.  
  131.     Carol may remove your next piece of clothing.
  132.  
  133. or:
  134.  
  135.     Mike and Guy may remove your next piece of clothing.
  136.  
  137. or:
  138.  
  139.     A randomly chosen player may remove your next piece
  140.     of clothing.
  141.  
  142. Because of the possibility of this final expansion the upper-case-p macros are generally not used in reward cards.
  143.  
  144. <P1>  
  145. Same as above but only a single name will ever be chosen.
  146.  
  147. <PF>    
  148. The macro will expand to the name of one or two randomly chosen female players.
  149.  
  150. <PF1>   
  151. The macro will expand to the name of a single randomly chosen female player.
  152.  
  153. <PM>
  154. The macro will expand to the name of one or two randomly chosen male players.
  155.  
  156. <PM1>
  157. The macro will expand to the name of a single randomly chosen male player.
  158.  
  159. <p>
  160. This macro will generally expand to the name of one or two randomly chosen players, but sometimes to a generic phrase such as ‚Äòa player of your choice‚Äô. For example:
  161.  
  162.     You may remove a piece of clothing from <p>.
  163.  
  164. might expand to any of the following:
  165.  
  166.     You may remove a piece of clothing from Sarah.
  167.  
  168. or:
  169.  
  170.     You may remove a piece of clothing from Bill and Ted.
  171.  
  172. or:
  173.  
  174.     You may remove a piece of clothing from the player of
  175.     your choice.
  176.  
  177. Because of the possibility of this final expansion, the lower-case-p macros are generally not used in punishment cards.
  178.  
  179. <p1>  
  180. Same as above but only a single name will be chosen.
  181.  
  182. <pf>    
  183. The macro will expand to the name of one or two randomly chosen female players.
  184.  
  185. <pf1>   
  186. The macro will expand to the name of a randomly chosen female player.
  187.  
  188. <pm>
  189. The macro will expand to the name of one or two randomly chosen male players.
  190.  
  191. <pm1>
  192. The macro will expand to the name of a randomly chosen male player.
  193.  
  194.     Modifiers    
  195. Some cards may only be appropriate for players of a certain gender or sexual orientation. For example it‚Äôs no use giving a female player a punishment card requiring her to pluck out a chest hair. Hence modifiers exist to restrict the distribution of certain cards. These modifiers work much like macros; thus to avoid the chest-hair problem, mentioned above, we might include a modifier in the card, like so:
  196.  
  197.     You must pluck out three chest hairs. <MA>
  198.  
  199. Here the <MA> modifier ensures that this card will only be given to someone with male anatomy. More than one modifier may be included in a card and may occur in conjunction with one or more macros. Please note, though, that while macros may be embedded within the text of a card, modifiers must occur at the end of the card.
  200.  
  201. The complete list of available modifiers is included below. Note that these modifiers are case-sensitive. For further examples look through the punishment, reward and surprises files distributed with the application.
  202.  
  203.     Modifier expansions    
  204.  
  205. <MA>
  206. If this modifier is present then the card will only be given to players with male anatomy.
  207.  
  208. <FA>
  209. If this modifier is present then the card will only be given to players with female anatomy.
  210.  
  211. <MD>
  212. The card will only be given to players with traditionally ‚Äòmale‚Äô desires. That is, the card will only be presented if the choosing player is a heterosexual male, a homosexual female or bisexual; e.g.
  213.  
  214.     Using your hands, determine which female player has the
  215.     firmest breasts. <MD>
  216.  
  217. <FD>
  218. The card will only be given to players with traditionally ‚Äòfemale‚Äô desires.That is, the card will only be presented if the choosing player is a heterosexual female, a homosexual male or bisexual; e.g.
  219.  
  220.     You may run your fingers through the chest hair of the
  221.     hairiest guy in the room. <FD>
  222.  
  223. <R>
  224. The card will only be presented if the game‚Äôs rating is currently set to R-rated or X-rated; e.g.
  225.  
  226.     You may massage <p1>‚Äôs naked body. <R>
  227.  
  228. <X>
  229. The card will only be presented if the game‚Äôs rating is currently set to X-rated.
  230.  
  231. <0>
  232. The card will only be given to a choosing player if he or she is not naked. (It‚Äôs a zero, not an oh.) Generally this modifier is used only in punishment cards. It should not be used in surprise cards because such cards often apply to the whole group rather than a selected player.
  233.  
  234. <2>
  235. This card will only be presented if the choosing player has at least two suitable partners playing with him/her. 
  236.  
  237. For example, assume that one heterosexual female is  playing against two or more heterosexual guys. If she draws a card with this modifier it will be presented to her, because she has at least two suitable opponents to choose from. If one of the guys draws a card with this modifier, though, it will not  be presented, because the guy has one desirable opponent (even though there are three or more players in total). 
  238.  
  239. Note that this modifier should not be used in surprise cards because such cards often apply to the whole group rather than a selected player.
  240.  
  241. <3>
  242. This card will only be presented if the choosing player has at least three suitable partners playing with him/her; e.g.
  243.  
  244.     You are to be blindfolded. Three other players in turn may
  245.     kiss you. If you don't correctly identify each player then
  246.     you must remove a piece of clothing. <0> <3>
  247.  
  248. Note that this modifier should not be used in surprise cards because such cards often apply to the whole group rather than a selected player.
  249.  
  250.     Fetish modifiers    
  251. The presence of one of the following modifiers at the end of a card declares the card to be a ‚Äòfetish‚Äô card and restricts the distribution of the card to those players who have subscribed to the appropriate fetish using the ‚ÄòSexual fetishes...‚Äô menu item. Before cards containing these modifiers will appear, the ‚ÄòInclude fetishes‚Äô option must also be selected in the ‚ÄòGame options...‚Äô dialog box. 
  252.  
  253.     <!BI>    Biting
  254.     <!BO>    Bondage and/or discipline
  255.     <!EV>    Exhibitionism/Voyeurism
  256.     <!FE>    Feet
  257.     <!MA>    Masturbation
  258.     <!TO>    Sex-toys (e.g. vibrators)
  259.     <!GS>    Golden showers
  260.     <!SP>    Special: all other fetishes
  261.  
  262. Note that most fetish cards will probably, by their nature, also require the presence of the <R> or <X> modifiers; e.g.
  263.  
  264.     You may bite <p>'s nipples. <!BI> <R> 
  265.  
  266. Remember, the purpose of including a fetish modifier in a card is to restrict the distribution of the card to only those players who explicitly chose to subscribe to that fetish.
  267.  
  268. The list of fetishes above should not be seen as representing the tastes of the program‚Äôs author.  :-)
  269.